home *** CD-ROM | disk | FTP | other *** search
- <HTML>
- <HEAD>
- <TITLE>Exposing Style Sheets in IE4</TITLE>
-
- <LINK ID=linked REL=STYLESHEET TYPE="text/css" HREF="linkedStyle.css">
-
- <STYLE ID=defined TITLE="The Defined Style Sheet">
- @import url(importedStyle.css);
-
- H1 { color: darkBlue; margin: 0px; }
- .layer { position: absolute; }
- #banner { background-color: yellow; }
- </STYLE>
- </HEAD>
-
- <BODY>
- <BLOCKQUOTE>
-
- <P><IMG ID=arrow SRC="arrow.gif">
-
- <DIV ID=banner CLASS=layer STYLE="color: blue; left: 72; top: 15;">
- <H1>
- Exposing Style Sheets in IE4
- </H1>
- </DIV>
-
- <BR><BR>
- All imported, linked, and defined style sheets are exposed as
- styleSheet objects into the <TT>styleSheets</TT> array. The
- following are the properties of each of the stylesheet objects:
-
- <BLOCKQUOTE><DL>
- <SCRIPT>
- document.writeln("<DT CLASS=first><B>LINK</B></DT>");
- document.writeln("<DD><B>id:</B> ");
- document.writeln(document.styleSheets.linked.id);
- document.writeln("</DD>");
- document.writeln("<DD><B>href:</B> ");
- document.writeln(document.styleSheets.linked.href);
- document.writeln("</DD>");
- document.writeln("<DD><B>readOnly:</B> ");
- document.writeln(document.styleSheets.linked.readOnly);
- document.writeln("</DD>");
-
- document.writeln("<DT><B>STYLE</B></DT>");
- document.writeln("<DD><B>title:</B> ");
- document.writeln(document.styleSheets.defined.title);
- document.writeln("</DD>");
- document.writeln("<DD><B>owningElement:</B> ");
- document.writeln(document.styleSheets.defined.owningElement.tagName);
- document.writeln("</DD>");
- document.writeln("<DD><B>readOnly:</B> ");
- document.writeln(document.styleSheets.defined.readOnly);
- document.writeln("</DD>");
-
- document.writeln("<DT><B>@import</B></DT>");
- document.writeln("<DD><B>href:</B> ");
- document.writeln(document.styleSheets.defined.imports[0].href);
- document.writeln("</DD>");
- document.writeln("<DD><B>parentStyleSheet:</B> ");
- document.writeln(document.styleSheets[1].imports[0].parentStyleSheet.id);
- document.writeln("</DD>");
- document.writeln("<DD><B>readOnly:</B> ");
- document.writeln(document.styleSheets.defined.imports[0].readOnly);
- document.writeln("</DD>");
- </SCRIPT>
- </DL></BLOCKQUOTE>
-
- </BLOCKQUOTE>
- </BODY>
- </HTML>
-